home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / flashpc.exe / FPGETKEY.C < prev    next >
Text File  |  1993-03-25  |  144b  |  14 lines

  1. #define IN_GETKEY  1
  2.  
  3. #include <fpclib.h>
  4.  
  5.  
  6. INT2 FPENTRY GetKey( VOID )
  7. {
  8.    INT2 i;
  9.  
  10.    i = BiosKbdGetElmt();
  11.    return( i );
  12. }
  13. 
  14.